﻿/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single FlexMenu server control per page      */
/*    the CSS files' name is used as a class and is prefixed to all of      */
/*    the selectors (without the path or extension).                        */
/*                                                                          */
/*    The server control will automatically wrap the entire FlexMenu        */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    *** THESE MUST BE ENTIRELY IN LOWER CASE! ***                         */
/*    The server control will cast these filenames to lower before use!     */
/*                                                                          */
/*    Only the base ASCII character set is supported.                       */
/*                                                                          */
/*    Also, spaces and periods before the extension will be converted       */
/*    into underscores, as these are not permitted within the selector.     */
/*                                                                          */

.leftnavigation .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    /* color: rgb(255, 255, 255); */
    width: 149px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px;
    font-family: Arial;
}

.leftnavigation .ekflexmenu_accessible_menu_start,
.leftnavigation .ekflexmenu_accessible_menu_startheading,
.leftnavigation .ekflexmenu_accessible_menu_startlink,
.leftnavigation .ekflexmenu_accessible_submenu_selected_message,
.leftnavigation .ekflexmenu_accessible_menuitem_selected_message,
.leftnavigation .ekflexmenu_accessible_menu_end,
.leftnavigation .ekflexmenu_accessible_menu_endlink
{
	/* These items support 508-Compliance, and are normally hidden, but */
	/* are visible to page readers and text-browsers for accessibility). */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.leftnavigation .ekflexmenu_submenu,
.leftnavigation .ekflexmenu_submenu_hover,
.leftnavigation .ekflexmenu_submenu_parent,
.leftnavigation .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	position: relative;
	top: 0px;
	left: 0px;
}

.leftnavigation ul
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
	
}

.leftnavigation li
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.leftnavigation .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.leftnavigation .ekflexmenu_submenu_items_hidden 
{
	/* DIV; normally hidden container for menu lists (becomes visible if */
	/* user clicks on related submenu button, or if Javascript/CSS not supported). */
	display: none;
}

/* Nested menu items */
.leftnavigation .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.leftnavigation .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.leftnavigation .ekflexmenu_submenu_items_hidden .ekflexmenu_submenu_items_hidden
{
	/* Rule is applied to nested submenus. Hidden included in-case */
	/* Javascript is not supported and hidden submenus are made visible. */
	margin-left: 0px; /* indents menu items, accumulating with each nesting level */
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
}

/* Button menu items, controls visibility of associated sub-menus */
.leftnavigation .ekflexmenu_button
{
	/* A; holds the title of the associated submenu, and typically acts as a */
	/* button (or folder) for the submenu. Can also hold images (background, etc). 
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    color: #293e6b;
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies 
    text-decoration: none;
    border-bottom: solid 1px #cdd2dc;
*/
}

.leftnavigation .ekflexmenu_button:focus,
.leftnavigation .ekflexmenu_button:hover,
.leftnavigation .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... 
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    color: #ffffff;
    background-color: #293e6b;
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies 
    */
}
.leftnavigation .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... 
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    color: #ffffff;
    background: #293e6b;
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies 
    text-decoration: none;
*/
}
.leftnavigation .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... 
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    color: #ffffff;
    background-color: #293e6b;
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies 
    text-decoration: none;
*/
}

/* images */
.leftnavigation .ekflexmenu_submenu_items a img, 
.leftnavigation .ekflexmenu_submenu_items_hidden a img {
	/* IMG; menu-item image, selected by CMS, can be used */
	/* with or in place of the textual title of the link. */
	border-width: 0px;
}

/* Link menu items */
.leftnavigation a.ekflexmenu_link, 
.leftnavigation a.ekflexmenu_link:link, 
.leftnavigation a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). 
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
    color: rgb(0, 0, 160);
    background: rgb(238, 238, 238);
    text-decoration: none;
    display: block; /* force one link per row 
    width: 100%; /* fill entire row with link 
    border-bottom: 1px solid rgb(220, 220, 220);
*/
}
/*.ekflexmenu_submenu_items a:hover */
.leftnavigation a.ekflexmenu_link:hover, 
.leftnavigation a.ekflexmenu_link:active, 
.leftnavigation a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... 
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
    color: rgb(255, 255, 255);
    background : rgb(181, 166, 132);
    text-decoration: none;
    border-color: rgb(181, 166, 132);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
*/
}

.leftnavigation a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... 
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
	color: rgb(0, 89, 231);
    background: rgb(206, 190, 140);
    border-color : rgb(206, 190, 140);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
*/
}
.leftnavigation a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... 
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
	color: rgb(198, 211, 255);
    background: rgb(161, 141, 81);
    border-color : rgb(161, 141, 112);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
*/
}

.leftnavigation .ekflexmenu_menu_level_2 a,
.leftnavigation .ekflexmenu_menu_level_2 a:link {
	color: #293e6b;
	text-decoration: none;
	display: block;
    padding:  0px 0px 0px 0px;
    font-weight: bold;
	text-indent:0px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    border-bottom: solid 1px #cdd2dc;
}


.leftnavigation .ekflexmenu_menu_level_2 a:hover,
.leftnavigation .ekflexmenu_menu_level_2 a:active,
.leftnavigation .ekflexmenu_menu_level_2 a:focus {
	display: block;
    padding: 0px 0px 0px 0px;
    font-weight: bold;
    color: #ffffff;
    background: #293e6b;
    text-indent:0px;
    width: 100%;
    text-decoration: none;
}

.leftnavigation .ekflexmenu_menu_level_2 a.ekflexmenu_link_selected,
.leftnavigation .ekflexmenu_menu_level_2 a.ekflexmenu_button_selected  {
	/* A; selected version */
    display: block;
    padding: 0px 0px 0px 0px;
    font-weight: bold;
    color: #ffffff;
    background: #293e6b;
	text-indent:0px;
    width: 100%;
    text-decoration: none;
}

.leftnavigation ul.ekflexmenu_list_level_2 {
/*	UL - Styling for the second level menu */
	margin-left: 0;
	padding: 0 0 0 10px;
	/*
	text-indent: -1em;
	
	list-style-image: url(/images/bullet_leftnav.gif);
	list-style-position: inside;
*/	
	font-weight:normal;
	font-size: 11px;
	
 }

.leftnavigation li.ekflexmenu_menu_level_3 {
	padding: 0 0 0 0;	
				
}

.leftnavigation li.ekflexmenu_menu_level_3 a,
.leftnavigation li.ekflexmenu_menu_level_3 a:link {
	/* Styling for global level 3 menu - the second visible level in the left navigation &amp;#187; */
	/*
	margin-left:0;
	padding-left: 1em;
    text-indent: -1em; 
*/    
    text-decoration: none;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
	color:#5191cd;
	border-bottom: 0px;
	background-color:#ffffff;
	text-indent:10px;
	font-family:Arial,Helvetica,sans-serif;
	font-weight:normal;
	
}

.leftnavigation li.ekflexmenu_menu_level_3 a.ekflexmenu_link_selected,
.leftnavigation li.ekflexmenu_menu_level_3 a.ekflexmenu_button_selected  {
	/* A; selected version */
    /*
    padding-left: 2em;
    text-indent: -1em; 
   
*/    
    background-image:url(/images/bullet_leftnav.gif);
    background-position:center left;
    background-repeat:no-repeat;
    background-color:#ffffff;
    color:#5191cd;
    display: block; /* force one link per row */
    width: 100%; /*  fill entire row with link */
    text-indent:10px;
}

.leftnavigation li.ekflexmenu_menu_level_3 a:active,
.leftnavigation li.ekflexmenu_menu_level_3 a:focus,
.leftnavigation li.ekflexmenu_menu_level_3 a:hover {
	/*
	padding-left: 2em;
    text-indent: -1em; 
*/
    
    background-image:url(/images/bullet_leftnav.gif);
    background-position: center left;
    background-repeat:no-repeat;
    background-color:#ffffff;	
    color:#5191cd;
    display: block; /* force one link per row */
    width: 100%; /*   fill entire row with link */
	text-indent:10px;
}

#leftNav li a {padding-left:5px;}

/* gc - ddNavi - blue arrow dropdown */

div#ddNavi 
{
    font-family: Verdana,Arial,Helvetica;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    color: #4D92D5;
    text-transform: none;
    text-decoration: none;
    letter-spacing: normal;
    word-spacing: 0;
    line-height: 22px;
    padding: 0;
    margin-top: 20px;
}
        
.ddNaviItem 
{
    margin: 10px 0 0 0;
}
        
.ddNaviTitle span.ddNaviTitleLeft {
    background: url('/images/ddNaviTitleLeft.gif') no-repeat scroll left top transparent;
    padding: 0;
    width: 10px;
}

.ddNaviTitle span.ddNaviTitleRight {
    background: url('/images/ddNaviTitleRight.gif') no-repeat scroll left top transparent;
    padding: 0;
    width: 21px;
}

.ddNaviTitle span {
    background: url('/images/ddNaviTitle.gif') repeat-x scroll left top transparent;
    cursor: pointer;
    display: inline-block;
    float: left;
    height: 20px;
    padding: 2px 3px 0 0;
}

#leftNav a.ddNaviTitle {            
    font-family: Verdana,Arial,Helvetica;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    color: #4D92D5;
    text-transform: none;
    text-decoration: none;
    letter-spacing: normal;
    word-spacing: 0;
    line-height: 16px;
    padding: 0;
}
        
div.ddNaviSubItems
{
    border: 1px solid #efefef;
    border-top: 0;
    list-style: none;
    margin: 0 22px 20px 10px;
    padding: 0;
}
        
#leftNav div.ddNaviSubItems a 
{
    text-decoration: none;
    outline: none;
    display: block;
    color: #4D92D5;
    line-height: 14px;
    padding: 6px;
}
        
#leftNav div.ddNaviSubItems a:hover
{
    text-decoration: underline;
}